home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue69 / System / DeskManMessages.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-03-17  |  350 b   |  17 lines

  1. unit DeskManMessages;
  2.  
  3. interface
  4.  
  5. uses Messages;
  6.  
  7. const
  8.     DM_DLLReady                 =       wm_App;
  9.     DM_GetItemText              =       wm_App + 1;
  10.     DM_GetItemPosition          =       wm_App + 2;
  11.     DM_SetItemText              =       wm_App + 3;
  12.     DM_GetItemRect              =       wm_App + 4;
  13.  
  14. implementation
  15.  
  16. end.
  17.